/*HEADER START*/
     

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }
        
    
        .full-width-container {
        width: 100%;
        background-color: #fff;
        padding: 5px 0;
        position: fixed;
        top: 0; /* Stick to the top */
        z-index: 1000; /* Ensure it stays on top of other content */
        box-shadow: 0 4px 2px -2px gray; /* Optional: Adds a subtle shadow when sticky */
    }

      
    
        .inner-content {
            display: flex;
            align-items: center;
            padding-left: 40px;
        }
    
        .logo img {
            height: auto; /* Increased logo size */
            width: 160px;
            /*margin-right: 20px;*/
            margin-top: -5px; /* Optional: Adjusts vertical alignment */
        }
    
        .college-heading {
            color: #238A89;
            font-size: 33px;
            font-weight: bold;
            line-height: 1.2;
            /*margin-left: -30px;*/
            margin-top: -7px;
        }
        .sticky-apply-button {
  position: fixed;
  top: 37%;
  right: 0;
  transform: translateY(-50%);
  background-color: #238A89;
  color: white;
  height: 200px; /* Increased height */
  width: 40px; 
  border-radius: 30px 0 0 30px; /* Curved left edges */
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
  padding: 0 10px; /* Adjust padding to prevent text overflow */
}

.sticky-apply-button:hover {
  background-color: #1c6f6f;
}
@media (max-width: 768px) {
    .inner-content {
        padding-left: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        width: 130px;
        margin: 5px 0;
    }

    .college-heading {
        font-size: 24px;
        margin-left: 0;
        margin-top: 0;
    }

    .sticky-apply-button {
        width: 35px;
        height: 160px;
        font-size: 14px;
        padding: 0 6px;
    }
}


/*HERO SECTION START */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
}

.full-page {
 padding: 50px 0px 60px;
    /* background-image: url(../images/hospitality_main_banner.jpg); */
    background-image: url(https://mcon.edu.in/wp-content/uploads/2026/05/m1.jpeg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-position: 50%;
}

/* Overlay */
.full-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 30, 67, 0.4);
  z-index: 0;
}

/* Form Box */
.contact-form {
  
  position: relative;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  z-index: 1;
  border-bottom: 4px solid #000;
  margin:auto;
    margin-top:83px;
    margin-left:-40px;
}
.full-page .text {
    position: relative;
    margin-top: 15%;
    margin-left: 15%;
}
.full-page .text h3{
    color:#e93442;
    font-weight:900;
}
.full-page .text p{
        position: relative;
    color: white;
    font-size: 23px;
    line-height: 40px;
    font-weight: 600;
}
/* Form Heading */
.contact-form h3 {
 text-align: center;
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 20px;
}
.text h4{
    font-size: 30px;
    color: white;
    
}
 .text a.know-more-btn {
      font-size: 16px;
      border-radius: 10px;
      margin: 0 15px 0 0;
 }
    
    
/* Input + Select Styling */
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 2px 10px;
  margin: 10px 0 0 0;
  border: 1px solid #ccc;
  border-bottom: 2px solid #000;
  border-radius: 4px;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  font-family: inherit;
  height: 35px;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #3a3f8b;
  outline: none;
  color: #3a3f8b;
}

/* Placeholder color */
.contact-form input::placeholder,
.contact-form select::placeholder {
  color: grey;
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
}

.checkbox-container input {
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #555;
}

/* Submit Button */
.submit-btn {
  background-color: #fa394a;
  color: #fff;
  padding: 5px;
  border: none;
  border-radius: 5px;
  font-size: 1.8rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e93442;
}

/* Inline select boxes */
.inline-selects {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .full-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 60px;
  }

  .contact-form {
    width: 95%;
    margin-left: 0;
    padding: 20px;
  }

  .contact-form h3 {
    font-size: 2rem;
  }

  .inline-selects {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn {
    font-size: 1rem;
  }
}



  /*ABOUT US SECTION START */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.image-container {
    position: relative;
    flex: 1;
    max-width: 40%;
}

.image-container img {
    width: 100%;
    height: auto;
   
    position: relative;
    z-index: 1;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}



.text-container {
flex: 1;
max-width: 50%;
margin-left: 100px;
padding: 30px 0; /* No padding on the right side */
background: none; /* Remove background */
box-shadow: none; /* No shadow */
border: none; /* No border */
position: relative; /* Optional, in case you want to further position the element */
}


.text-container .tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: #cceeff;
    color: #1a6968;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-container p {
    color: #4f4f4f;
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 15px;
}

.legacy-heading {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legacy-heading i {
    color: red;
    font-size: 22px;
    margin-right: 10px;
}

.legacy-heading span {
    font-size: 22px;
    font-weight: bold;
    color: black;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .image-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .text-container {
    max-width: 100%;
    margin-left: 0;
    padding: 0;
    text-align: center;
  }

  .text-container .tag {
    font-size: 16px;
  }

  .text-container p {
    font-size: 16px;
  }

  .legacy-heading {
    justify-content: center;
  }

  .legacy-heading i,
  .legacy-heading span {
    font-size: 18px;
  }
}

/*VIDEO SECTION START */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.white-container {
    width: 100%;
    height: 400px;
    background-color: #fff;
    padding: 40px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-rectangle {
    width: 63%;
    background-color: #238A89;
    height: 400px;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.left-rectangle h1 {
    font-size: 40px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.left-rectangle p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    color: white;
    text-align: left;
    margin-left: 0;
}

.know-more-btn {
    background-color: #238A89;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s, color 0.3s;
    text-align: left;
}

.know-more-btn:hover {
    background-color: white;
    color: #238A89;
}

.right-image-container {
width: 35%;
height: 300px;
margin-right: 20px;
margin-top: 20px; 
position: relative;
}

.right-image-container img {
width: 100%;
height: 100%;
object-fit: cover;

position: absolute;
left: -80px;  /* Move the image to the left */
}


.youtube-icon {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: red;
    cursor: pointer;
   
    border-radius: 50%;
    padding: 10px;
}

.youtube-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .white-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .left-rectangle {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .left-rectangle h1 {
    font-size: 28px;
    text-align: center;
  }

  .left-rectangle p {
    font-size: 15px;
    text-align: center;
    margin: 0 auto 20px auto;
  }

  .know-more-btn {
    margin: 0 auto;
    display: block;
  }

  .right-image-container {
    width: 100%;
    height: 200px;
    margin: 20px auto 0 auto;
    position: relative;
  }

  .right-image-container img {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .youtube-icon {
    font-size: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*FACILITY SECTION START */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
  }

  /* Heading Style */
  .campus-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: black; /* Heading in black color */
    font-weight: bold; /* Make heading bold */
    width: 100%; /* Ensuring it takes full width */
  }

  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: white;
    width: 100%; /* Ensure container takes full width */
  }

  .features-left {
    flex: 1 1 300px;
    text-align: center;
    padding: 20px;
  }

  .features-left img {
    max-width: 100%;
    height: auto;
  }

  .features-right {
    flex: 1 1 250px; /* Reduced width of the right section */
    padding: 20px;
    margin-top: 20px; /* Added margin-top to move the right section down */
  }

  .feature-box {
    background-color: rgb(0, 30, 67); /* Blue */
    color: white;
    padding: 10px 15px; /* Reduced padding */
    border: 2px solid #35c2bf;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: bold;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
  }

  .feature-box i {
    font-size: 18px;
    margin-right: 10px; /* Space between icon and text */
  }

  .feature-box:hover {
    transform: scale(1.02);
  }

  @media (max-width: 768px) {
    .features-container {
      flex-direction: column;
      align-items: center;
    }

    .features-right {
      width: 100%;
    }
  }
  /*DEPARTMENT SECTION START */
  * {
    font-family: 'Poppins', sans-serif;
  }

  .carousel-heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
  }

  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    flex: 0 0 33.3333%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Department tag at bottom of image */
  .department-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(163, 47, 66, 0.9);
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
  }

  .department-tag i {
    margin-right: 8px;
  }

  /* View More button */
  .view-more {
    text-align: center;
    margin-top: 20px;
  }

  .view-more button {
    background: none;
    border: none;
    color: #a32f42;
    font-size: 2.5 rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
  }

  .view-more button:hover {
    color: #891d31;
  }

  .view-more i {
    margin-left: 8px;
    font-size: 1.6rem;
  }
  @media (max-width: 768px) {
  .carousel-heading {
    font-size: 2rem;
    margin: 20px 10px;
  }

  .carousel-slide {
    flex: 0 0 100%;
    padding: 8px;
  }

  .department-tag {
    font-size: 1rem;
    padding: 6px 10px;
    bottom: 10px;
    left: 10px;
  }

  .view-more button {
    font-size: 1.4rem;
  }

  .view-more i {
    font-size: 1.3rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

  /*EXPLORE STARTS */
  
/* New Explore Section with unique class */
.explore-section {
    position: relative;
    width: 100vw; /* Use viewport width for full page width */
    height: 60vh; /* Decreased height for the image */
    overflow: hidden;
}

/* Full width image for the explore section */
.explore-section .full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Overlay style */
.explore-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 128, 128, 0.6); /* Teal color with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Content inside overlay */
.explore-section .content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px; /* Limit the content width */
    width: 100%;
    font-family: 'Arial', sans-serif; /* Added font family */
}

/* Increased font size for heading */
.explore-section .content h2 {
    font-size: 3.3rem; /* Bigger font size */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: white; /* White color for the heading */
    font-family: 'Arial', sans-serif; /* Added font family for consistency */
}

/* Increased font size for paragraph (description) */
.explore-section .description {
    font-size: 1.5rem; /* Bigger font size for description */
    line-height: 1.6;
    margin-bottom: 30px;
    color: white; /* White color for the description */
    font-family: 'Arial', sans-serif; /* Added font family for consistency */
}

/* Reduced width of the button */
.explore-section .explore-more-btn {
    padding: 12px 30px; /* Reduced button padding */
    background-color: #f00c4f; /* Cherry red background */
    border: none;
    color: white;
    font-size: 1.4rem; /* Adjusted font size */
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px; /* Rectangle shape */
    transition: background-color 0.3s ease;
    width: auto; /* Ensure button width adapts to content */
}

.explore-section .explore-more-btn:hover {
    background-color: #e6003d; /* Darker shade of cherry red for hover */
}

.explore-section .explore-more-btn span {
    margin-left: 10px;
    font-size: 2rem;
}
@media (max-width: 768px) {
  .explore-section {
    height: auto; /* Allow height to adjust based on content */
    padding: 40px 20px;
  }

  .explore-section .full-width-image {
    height: 100%;
    object-fit: cover;
    position: relative;
  }

  .explore-section .overlay {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    position: relative;
  }

  .explore-section .content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .explore-section .description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .explore-section .explore-more-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .explore-section .explore-more-btn span {
    font-size: 1.5rem;
  }
}

/*WHY CHOOSE US STARTS*/
   /* General Styles */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Scoped Styles for WHY CHOOSE US Section */
.why-choose-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.why-choose-us .section-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #0b0b0b;
    text-align: left;
    margin-bottom: 40px;
}

.why-choose-us .section-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
    text-align: right;
}

/* Course Category Title */
.why-choose-us .course-category-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
}

/* Categories Grid */
.why-choose-us .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Category Card Styles */
.why-choose-us .category-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.why-choose-us .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 8px;
    clip-path: ellipse(100% 100% at 100% 0%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.why-choose-us .category-card:hover::before {
    opacity: 1;
}

.why-choose-us .category-card:hover {
    transform: translateY(-5px);
}

.why-choose-us .icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.why-choose-us .category-card .icon i {
    color:#dc3545; /* Teal icon color by default */
}

.why-choose-us .category-card:hover .icon i {
    color: #fff !important;
}

.why-choose-us h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #01212c;
}

.why-choose-us p {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Custom Category Background Colors */
.why-choose-us .business,
.why-choose-us .programming,
.why-choose-us .design,
.why-choose-us .language,
.why-choose-us .science,
.why-choose-us .health {
    background-color: #fff; /* Force white background */
    color: #003344;
}

/* Hover Effect for Specific Boxes */
.why-choose-us .category-card.language:hover,
.why-choose-us .category-card.health:hover,
.why-choose-us .category-card.science:hover {
    background-color: #008b8b;
    color: #fff;
}

.why-choose-us .category-card.language:hover h3,
.why-choose-us .category-card.health:hover h3,
.why-choose-us .category-card.science:hover h3 {
    color: #fff;
}

.why-choose-us .category-card.language:hover p,
.why-choose-us .category-card.health:hover p,
.why-choose-us .category-card.science:hover p {
    color: #fff;
}

.why-choose-us .category-card.language:hover .browse-link,
.why-choose-us .category-card.health:hover .browse-link,
.why-choose-us .category-card.science:hover .browse-link {
    color: #fff;
}

.why-choose-us .category-card.language:hover .browse-link i,
.why-choose-us .category-card.health:hover .browse-link i,
.why-choose-us .category-card.science:hover .browse-link i {
    color: #fff;
}

/* Icon hover color override (if needed for business/programming) */
.why-choose-us .business:hover .icon i,
.why-choose-us .programming:hover .icon i {
    color: #fff;
}

/* Additional Hover Effects */
.why-choose-us .category-card.business:hover,
.why-choose-us .category-card.programming:hover {
    background-color: #003344;
    color: #fff;
}

/* Orange background on hover for 2nd, 4th, and 6th Boxes */
.why-choose-us .category-card.programming:hover,
.why-choose-us .category-card.language:hover,
.why-choose-us .category-card.health:hover {
    background-color: rgb(0, 30, 67);
    color: #fff;
}

.why-choose-us .main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-us .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .why-choose-us .category-card p {
        font-size: 0.8rem;
    }
}
/*FOOTER SECTION START */
/* FOOTER SECTION START */
.footer-container-unique {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    padding: 20px;
    background-color: #f0efef;
    border-top: 5px solid #008b8b;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 15px;
    min-width: 250px; /* Ensures sections don't shrink too much */
  }
  
  .footer-section h3 {
    color: #000; /* Changed to black */
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold; /* Added bold to the headings */
    font-family: 'Arial', sans-serif; /* Adjusted font to match the text inside the rectangle */
  }
  
  .footer-section p, 
  .footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #000; /* Changed to black */
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    color: #008b8b;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    background-color: #008b8b;
    color: #fff;
  }
  
  .iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    margin-top: 10px;
  }
  
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    border: none;
  }
  
  footer {
    text-align: center;
    padding: 10px 0;
    background-color: #111;
    font-size: 12px;
    color: #ccc;
  }
  
  /* Spacing adjustments */
  .footer-section-address {
    padding-left: 60px;
  }
  
  .footer-section-address p {
    font-size: 16px;
  }
  
  .footer-section-address .admission-number {
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Icon Styles */
  .footer-icon {
    color: #008b8b;
    margin-right: 10px;
  }
  
  /* Logo Styling */
  .footer-logo img {
    margin-top: 15px;
    max-width: 290px; /* Adjust the size of the logo */
    height: 7vh;
  }
  
  /* Adjusted spacing */
  .footer-section-campus-tour {
    padding-right: 60px;
  }
  
  .footer-section-group {
    padding-left: 15px;
  }
  
  /* List item styles */
  .footer-section-group ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section-group ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #000; /* Changed to black */
    padding: 10px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: rgba(11, 10, 10, 0.4);
    width: 280px;
    height: 50px;
    text-align: left;
    border-radius: 5px;
  }
  
  .footer-section-group ul li::before {
    content: "\f144"; /* Font Awesome play icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #008b8b;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .footer-section-group ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #000; /* Changed to black */
  }
  
  .footer-section-group ul li a:hover {
    text-decoration: underline;
  }
  /* Social Media Circle Icons for FOLLOW US */
  .follow-us-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
  }
  
  .follow-us-icons a {
    width: 36px;
    height: 36px;
    background-color: #ccc; /* Light grey background */
    color: #333; /* Dark grey icon */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .follow-us-icons a:hover {
    background-color: #008b8b;
    color: #fff;
  }
  
  /* Lifted rectangles & background color updated */
  .footer-section-group ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    padding: 10px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: rgba(50, 50, 50, 0.2); /* Darker grey */
    width: 280px;
    height: 50px;
    text-align: left;
    border-radius: 5px;
    position: relative;
    top: -8px; /* Lift slightly up */
  }
  .icons{
          position: fixed;
    bottom: 30px;
    left: 30px;
    z-index:9999;
  }
  .icons img{
      width:55px;
  }
  .social-media{
    position: fixed;
    top: 50%;
    right: 0px;
  }
   .social-media ul{
       list-style:none;
   }
   .social-media ul li{
       background:#238A89;
       padding:13px;
       text-align:center;
       border-radius: 10px 0 0 10px;
   }
   .refresh{
           cursor: pointer;
   }
   #content{
       text-align:center;
   }
   .social-media ul li a i{
       color:white;
       font-size:20px;
       line-height:0px;
   }
   .list-unstyled li{
       padding:0 15px;
       font-weight: 600;
    color: #891d31;
   }
   .list-unstyled li:hover a{ color: #238A89; }
   .list-unstyled li i{
    padding-right: 7px;
    font-size: 20px;
}
  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .footer-container-unique {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      margin: 10px 0;
      min-width: 100%; /* Makes sections full-width */
    }
  
    .footer-section-address,
    .footer-section-campus-tour {
      padding-left: 0;
      padding-right: 0;
    }
  
    .footer-section-group ul li {
      width: 100%;
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  /* FOOTER SECTION END */
  

